home *** CD-ROM | disk | FTP | other *** search
/ Aminet 33 / Aminet 33 - October 1999.iso / Aminet / dev / cross / avra-0.4_src.lha / avra-0.4 / readme < prev    next >
Encoding:
Text File  |  1999-03-24  |  2.6 KB  |  90 lines

  1.     avra - Assember for the Atmel AVR microcontroller series
  2.     Copyright (C) 1998-1999 Jon Anders Haugum
  3.  
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2 of the License, or
  7.     (at your option) any later version.
  8.  
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; see the file COPYING.  If not, write to
  16.     the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.     Boston, MA 02111-1307, USA.
  18.  
  19.  
  20.     Author of avra can be reached at:
  21.        email: jonah@colargol.tihlde.hist.no
  22.        www: http://www.colargol.tihlde.hist.no/~jonah/el/avra.html
  23.  
  24.  
  25. ----------------------------------------------------------------------
  26.  
  27. 1. Introduction
  28.  
  29. avra is an assembler for the Atmel AVR microcontrollers, and it is
  30. almost compatible with Atmel's own assembler. The difference is that
  31. avra supports some extra preprocessor directives, and the macro-support
  32. is better.
  33.  
  34. Since avra is written in ANSI C it should be possible to compile on
  35. most systems.
  36.  
  37. ----------------------------------------------------------------------
  38.  
  39. 2. Installation
  40.  
  41. To install avra you should copy the avra-executeable to a apropriate location.
  42.  
  43. To compile you should rename the apropritate makefile, and do a make (use smake
  44. for Amiga SAS/C, and nmake for Mickeysoft visual c++).
  45.  
  46.  
  47. 2.1 Linux
  48.  
  49. First you should compile the source by typing make.
  50.  
  51. avra should be copied to /usr/local/bin/ or other apropriate directory.
  52.  
  53. Doing a 'make install' will do the same thing.
  54.  
  55.  
  56. 2.2 AmigaOS
  57.  
  58. avra should be copied to c: or other apropriate directory.
  59.  
  60. If you are using the source-distribution a 'make install' will do the same.
  61.  
  62.  
  63. 2.3 win32 (Windows 95 (++) and Windows NT)
  64.  
  65. avra.exe should be copied to an apropriate location.  A 'nmake install' will
  66. copy it and avra.def to c:\bin\
  67.  
  68. ----------------------------------------------------------------------
  69.  
  70. 4. Adding support for other systems
  71.  
  72. avra is written mostly in ANSI-C, so it should be possible to port it
  73. to other 32-bit systems.
  74.  
  75. Checklist to do a port:
  76.  -Make a system-dependent Makefile
  77.  -Send your modification to the author, so they can be included in the next
  78.   release.
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.